From aa17bdc6db78e15979a24f6a0da0a06d633ff0e3 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Mon, 27 Oct 2008 13:23:58 +0000 Subject: [PATCH] Print d->is_dying when dumping domain info. Signed-off-by: Jan Beulich --- xen/common/keyhandler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/keyhandler.c b/xen/common/keyhandler.c index e24a6d335f..e13698efdd 100644 --- a/xen/common/keyhandler.c +++ b/xen/common/keyhandler.c @@ -183,9 +183,9 @@ static void dump_domains(unsigned char key) { printk("General information for domain %u:\n", d->domain_id); cpuset_print(tmpstr, sizeof(tmpstr), d->domain_dirty_cpumask); - printk(" refcnt=%d nr_pages=%d xenheap_pages=%d " + printk(" refcnt=%d dying=%d nr_pages=%d xenheap_pages=%d " "dirty_cpus=%s\n", - atomic_read(&d->refcnt), + atomic_read(&d->refcnt), d->is_dying, d->tot_pages, d->xenheap_pages, tmpstr); printk(" handle=%02x%02x%02x%02x-%02x%02x-%02x%02x-" "%02x%02x-%02x%02x%02x%02x%02x%02x vm_assist=%08lx\n", -- 2.30.2